home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / business / aesti967.zip / -HELP.BAT < prev    next >
DOS Batch File  |  1996-07-07  |  1KB  |  46 lines

  1. echo off
  2. cls
  3. echo   HelpMan
  4. echo   ───────
  5. echo     This batch file starts HELPMAN.EXE which is a stand-alone version
  6. echo     of AEsti's internal Help utility. It uses the -MANUALE.HLP help
  7. echo     file which must be in the same directory as it is.
  8. echo.
  9. echo     HELPMAN.EXE requires at least 300k of free memory and a mouse
  10. echo.
  11. echo     If you do not have a mouse then use the following keys -
  12. echo       TAB          move to next topic
  13. echo       SHIFT+TAB    move to previous topic
  14. echo       Cursor keys  move down/up
  15. echo       ALT+KEY      pressing ALT and the hilighted letter on buttons
  16. echo                    will select that button i.e. ALT+X will exit
  17. echo.
  18. echo.
  19. echo     A utility called VIEW can also be used to view the help document
  20. echo     -MANUALE.DOC, the command line to do this is VIEW -MANUALE.DOC
  21. echo.
  22. echo.
  23. echo         ─── Press a key to continue or CTRL+C to return to DOS ───
  24. pause>nul
  25. cls
  26.  
  27. if exist helpman.exe goto CheckHelp
  28. echo.
  29. echo    The file HELPMAN.EXE is not in the current directory !
  30. echo.
  31. goto end
  32.  
  33. :CheckHelp
  34. if exist -manualE.hlp goto FilesOK
  35. echo.
  36. echo    The help file -MANUALE.HLP is not in the current directory !
  37. echo.
  38. goto end
  39.  
  40. :FilesOK
  41. helpman -manuale.hlp
  42. cls
  43.  
  44. :end
  45.  
  46.